@charset "UTF-8";
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: transparent;
  cursor: pointer;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar-track {
  background-color: #fff;
  cursor: pointer;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  background-color: rgba(144, 147, 153, 0.3);
  border-radius: 10px;
  cursor: pointer;
}

/*定义滑块 内阴影+圆角*/
.indexslider {
  position: sticky;
  top: 0px;
  z-index: 1000;
}

.indexslider .el-slider__button {
  display: none;
  width: 8px;
  height: 8px;
}

.indexslider .el-slider__runway {
  margin: 0;
  height: 8px;
}

.indexslider .el-slider__bar {
  border-radius: 3px;
  height: 8px;
}

body {
  background-color: #F8FBFF;
}
